From: Keir Fraser Date: Wed, 24 Feb 2010 09:38:35 +0000 (+0000) Subject: xend: notify xenpv device model that console info is ready X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~12574 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=078a073a6ccd4f6a66cce154ecaeceaa39c28b78;p=xen.git xend: notify xenpv device model that console info is ready Sometimes PV domain with vfb doesn't boot up. /sbin/kudzu is stuck. After investigation, I've found that the evtchn for console is not bound at all. Normal sequence of evtchn initialization in qemu-dm for xenpv is: 1) watch xenstore backpath (/local/domain/0/backend/console//0) 2) read console info (/local/domain//console/{type, ring-ref, port..= }) 3) bind the evtchn to the port. But in some case, xend writes to the backpath before the console info is prepared, and never write to the backpath again. So the qemu-dm fails at 2) and never reach to 3). When this happens, manually xenstore-write command on Domain-0 resumes the guest. Signed-off-by: Kouya Shimura --- diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py index 577905d459..585a73bff3 100644 --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -1642,6 +1642,11 @@ class XendDomainInfo: console_uuid = serial_consoles[0].get('uuid') self.info.console_update(console_uuid, 'location', self.console_port) + # Notify xenpv device model that console info is ready + if not self.info.is_hvm() and self.info.has_rfb(): + console_ctrl = self.getDeviceController('console') + # The value is unchanged. Just for xenstore watcher + console_ctrl.writeBackend(0, 'uuid', console_uuid) # Update VNC port if it exists and write to xenstore